[USER (data scientist)]: Alright, we've encoded the categorical variables, so let's tackle question three. Could you whip up some code to figure out if we need to normalize the credit_customers dataset? Just check if the value is over 1, and if it is, we should normalize it and generate the top 5 rows of normalized dataframe. By the way, Standard Scaling works well for this - it centers each feature around 0 with a standard deviation of 1, which is pretty popular and effective.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd  
import numpy as np
from sklearn.preprocessing import StandardScaler 
import pickle
from decision_company import read_csv_file, select_data_types, get_columns, df_copy, get_min_value, get_max, get_first_n_rows, fetch_column, create_standard_scaler, fit_transform_standard_scaler, col_assign_val

# Load the dataset  
credit_customers = read_csv_file("credit_customers.csv")  
  
# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]  
</code1>
# YOUR SOLUTION END

print("Data after Standard Scaling:\n", get_first_n_rows(credit_customers_normalized))  

# save data
pickle.dump(get_first_n_rows(credit_customers_normalized),open("./pred_result/credit_customers_normalized_head.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Sure, I can help you:

# MY SOLUTION BEGIN:
